From: Brion Vibber Date: Wed, 28 Jan 2009 19:57:20 +0000 (+0000) Subject: Tweak for bug 3043 -- disable feed link icons in RTL since they display incorrectly... X-Git-Tag: 1.31.0-rc.0~43166 X-Git-Url: http://git.cyclocoop.org/%22.%24info%5B?a=commitdiff_plain;h=c32af0a7b62b41d7102f28686e5863b23312c7e1;p=lhc%2Fweb%2Fwiklou.git Tweak for bug 3043 -- disable feed link icons in RTL since they display incorrectly in IE and some other browsers (same as external link icons). I thought this had been done previously, since they didn't show up when I did a quick test in RTL, but I guess I was wrong. :P --- diff --git a/skins/common/common_rtl.css b/skins/common/common_rtl.css index d3f8351290..08f11f12b4 100644 --- a/skins/common/common_rtl.css +++ b/skins/common/common_rtl.css @@ -48,7 +48,7 @@ html > body div#article ul { } /* feed links */ -a.feedlink { +a.feedlink, a.feedlink { background: none; padding-left: 0; } diff --git a/skins/modern/rtl.css b/skins/modern/rtl.css index d7aae76984..1ea03bf2c6 100644 --- a/skins/modern/rtl.css +++ b/skins/modern/rtl.css @@ -44,7 +44,7 @@ div.tleft, div.floatleft, table.floatleft { } /* Fix link icons */ -.external { +.external, a.feedlink { padding: 0 !important; background: none !important; } diff --git a/skins/monobook/rtl.css b/skins/monobook/rtl.css index fbd5ab35ea..cd6136ae16 100644 --- a/skins/monobook/rtl.css +++ b/skins/monobook/rtl.css @@ -148,7 +148,7 @@ li#ca-watch { float: left; } /* Fix link icons */ -.external { +.external, a.feedlink { padding: 0 !important; background: none !important; } diff --git a/skins/simple/rtl.css b/skins/simple/rtl.css index 1c72597048..30f1ecdf97 100644 --- a/skins/simple/rtl.css +++ b/skins/simple/rtl.css @@ -100,7 +100,7 @@ div.tleft, div.floatleft, table.floatleft { } /* Fix link icons */ -.external { +.external, a.feedlink { padding: 0 !important; background: none !important; }